Micron Document
Fox's Git Mirrors

Node / RFnexus / code.git / commits / 6372a96

Commit 6372a965cfa11f04dd0d6283f02b40b0aa1b1f79


Parents : a80f5cd
Author : Ahmet Inan <inan@aicodix.de>
Date : 2024-03-07T18:31:52+01:00

renamed sort.hh to simd_sort.hh

Changes

4 files changed, 81 insertions(+), 81 deletions(-)

D sort.hh -37

Diff

diff --git a/sort.hh b/simd_sort.hh
similarity index 100%
rename from sort.hh
rename to simd_sort.hh

diff --git a/tests/sort_regression_test.cc b/tests/simd_sort_regression_test.cc
similarity index 87%
rename from tests/sort_regression_test.cc
rename to tests/simd_sort_regression_test.cc
index 1b18a2b..38e33a9 100644
--- a/tests/sort_regression_test.cc
+++ b/tests/simd_sort_regression_test.cc
@@ -1,5 +1,5 @@
/*
-Regression Test for the SIMD wrappers sort
+Regression Test for the SIMD sorting wrappers
Copyright 2024 Ahmet Inan <inan@aicodix.de>
*/
@@ -10,7 +10,7 @@ Copyright 2024 Ahmet Inan <inan@aicodix.de>
#include <algorithm>
#include <functional>
#include "simd.hh"
-#include "sort.hh"
+#include "simd_sort.hh"
int main()
{
@@ -38,7 +38,7 @@ int main()
for (int i = 0; i < WIDTH; ++i)
assert(d.v[i] == e.v[i]);
}
- std::cerr << "Sort regression test passed!" << std::endl;
+ std::cerr << "SIMD sort regression test passed!" << std::endl;
return 0;
}

Served by rngit 1.4.1 - Generated in 0.04s